type net/http.http2Server

18 uses

	net/http (current package)
		h2_bundle.go#L3916: type http2Server struct {
		h2_bundle.go#L3993: func (s *http2Server) markNewGoroutine() {
		h2_bundle.go#L3999: func (s *http2Server) now() time.Time {
		h2_bundle.go#L4007: func (s *http2Server) newTimer(d time.Duration) http2timer {
		h2_bundle.go#L4015: func (s *http2Server) afterFunc(d time.Duration, f func()) http2timer {
		h2_bundle.go#L4022: func (s *http2Server) initialConnRecvWindowSize() int32 {
		h2_bundle.go#L4029: func (s *http2Server) initialStreamRecvWindowSize() int32 {
		h2_bundle.go#L4036: func (s *http2Server) maxReadFrameSize() uint32 {
		h2_bundle.go#L4043: func (s *http2Server) maxConcurrentStreams() uint32 {
		h2_bundle.go#L4050: func (s *http2Server) maxDecoderHeaderTableSize() uint32 {
		h2_bundle.go#L4057: func (s *http2Server) maxEncoderHeaderTableSize() uint32 {
		h2_bundle.go#L4067: func (s *http2Server) maxQueuedControlFrames() int {
		h2_bundle.go#L4112: func http2ConfigureServer(s *Server, conf *http2Server) error {
		h2_bundle.go#L4117: 		conf = new(http2Server)
		h2_bundle.go#L4265: func (s *http2Server) ServeConn(c net.Conn, opts *http2ServeConnOpts) {
		h2_bundle.go#L4269: func (s *http2Server) serveConn(c net.Conn, opts *http2ServeConnOpts, newf func(*http2serverConn)) {
		h2_bundle.go#L4424: 	srv              *http2Server
		server.go#L3604: 		conf := &http2Server{}